home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Network Support Library
/
RoseWare - Network Support Library.iso
/
apidev
/
netdmo.exe
/
WVSC.FRM
< prev
Wrap
Text File
|
1993-12-10
|
2KB
|
80 lines
Version 1.00
BEGIN Form Wvsc
AutoRedraw = 0
BackColor = QBColor(1)
BorderStyle = 1
Caption = "West Valley Software Company"
ControlBox = -1
Enabled = -1
ForeColor = QBColor(0)
Height = Char(18)
Left = Char(8)
MaxButton = -1
MinButton = -1
MousePointer = 0
Tag = ""
Top = Char(2)
Visible = -1
Width = Char(64)
WindowState = 0
BEGIN PictureBox Picture1
AutoRedraw = -1
BackColor = QBColor(1)
BorderStyle = 1
DragMode = 0
Enabled = -1
ForeColor = QBColor(15)
Height = Char(12)
Left = Char(0)
MousePointer = 0
TabIndex = 0
TabStop = -1
Tag = ""
Top = Char(0)
Visible = -1
Width = Char(62)
END
BEGIN CommandButton okbuton
BackColor = QBColor(7)
Cancel = 0
Caption = " OK "
Default = 0
DragMode = 0
Enabled = -1
Height = Char(3)
Left = Char(23)
MousePointer = 0
TabIndex = 1
TabStop = -1
Tag = ""
Top = Char(12)
Visible = -1
Width = Char(14)
END
END
'$FORM Netdemo
SUB Form_Load ()
Picture1.PRINT "WEST VALLEY SOFTWARE COMPANY was founded in 1992. Since "
Picture1.PRINT "that time, the people at WVSC have been working hard to "
Picture1.PRINT "bring you state of the art software products."
Picture1.PRINT "Our most popular product has been NETWORK SYSTEM CALLS "
Picture1.PRINT "FOR BASIC. This set of assembly language procedures "
Picture1.PRINT "give the BASIC programer system level access to Novell's"
Picture1.PRINT "Netware 286 and 386 operating systems. The package comes"
Picture1.PRINT "with 35 procedures in library form, a sample program for"
Picture1.PRINT "each call, the source code for this demo, and a manual."
END SUB
SUB Form_Unload (Cancel AS INTEGER)
Netdemo.SHOW
END SUB
SUB OKButon_Click ()
UNLOAD wvsc
Netdemo.SHOW
END SUB